home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / etc / modprobe.d / fuse < prev    next >
Text File  |  2008-09-25  |  343b  |  5 lines

  1. install fuse /sbin/modprobe --ignore-install fuse && \
  2.         { if grep -q fusectl /proc/filesystems; then /bin/mount -t fusectl fusectl /sys/fs/fuse/connections; fi ; : ; }
  3. remove fuse { if grep -q " /sys/fs/fuse/connections " /proc/mounts; then /bin/umount /sys/fs/fuse/connections; fi } && \
  4.         /sbin/modprobe -r --ignore-remove fuse
  5.